95d5fc06c374f116fb981d405f5d1ea86f4c8a39,core/src/test/java/org/dcache/nfs/v4/OperationCREATE_SESSIONTest.java,OperationCREATE_SESSIONTest,testCreateSessionNoClient,#,86
Before Change
result = nfs_resop4.resopFor(nfs_opnum4.OP_CREATE_SESSION);
context = new CompoundContextBuilder()
.withStateHandler(stateHandler)
.withOpCount(1)
.build();
AssertNFS.assertNFS(CREATE_SESSION, context, result, nfsstat.NFSERR_STALE_CLIENTID);
}
After Change
result = nfs_resop4.resopFor(nfs_opnum4.OP_CREATE_SESSION);
context = new CompoundContextBuilder()
.withStateHandler(stateHandler)
.withOpCount(1)
.withCall(generateRpcCall())
.build();
AssertNFS.assertNFS(CREATE_SESSION, context, result, nfsstat.NFSERR_STALE_CLIENTID);
}